fixed motion request condition which was wrongly ported with my last
authorTim Janik <timj@gtk.org>
Wed, 7 Feb 2007 18:09:35 +0000 (18:09 +0000)
committerTim Janik <timj@src.gnome.org>
Wed, 7 Feb 2007 18:09:35 +0000 (18:09 +0000)
Wed Feb  7 19:03:28 2007  Tim Janik  <timj@gtk.org>

        * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request
        condition which was wrongly ported with my last commit.

svn path=/trunk/; revision=17274

ChangeLog
gtk/gtkentry.c

index 59dcfd0cb032b96cfa33e3868d5e031a7520f2ee..aa239b1de4e27a37043ac1ba276fb8dc94172af5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb  7 19:03:28 2007  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request 
+       condition which was wrongly ported with my last commit.
+
 Tue Feb  6 15:53:59 2007  Tim Janik  <timj@imendio.com>
 
        * gtk/gtktextview.c (gtk_text_view_motion_event):
index 9da426264a24f54f7a5d9462a9e241529ac50b95..2cf8f8df92cb5f599e4b1272f1507a599dde136b 100644 (file)
@@ -1872,8 +1872,7 @@ gtk_entry_motion_notify (GtkWidget      *widget,
   if (entry->select_lines)
     return TRUE;
 
-  if (entry->text_area != event->window)
-    gdk_event_request_motions (event);
+  gdk_event_request_motions (event);
 
   if (entry->in_drag)
     {